.DESCRIPTION
	MouseviatorHelper.dll is a small C++ library containing couple of functions for use in Lua scripts. 
	There are functions to manipulate Windows processes and windows. All of the functions are basically wrapper 
	functions for respective Windows API functions, just extended to bind to Lua.
	
	The library was written for EZCA Restart Script for flight simulator (FSX, Prepar3D).
	See this post for more details:
	http://mouseviator.com/pc-creations/ezca-and-freetrack-restart-script-v-2-0b/
	
	I hope the source project can server also as an example on how to write C++ functions library for Lua, that can be used within 
	flight simulator (FSX or Prepar3D) thanks to FSUIPC Lua integration. I did not find any more complete example on how to do that 
	while I was writing the library.

	It might not be the best example, but it works - this is up to others to judge. To defend myself in advance, 
	my C++ proficiency is a bit outdated. It is about eight years since I was using it the last time. Currently, 
	I spend more time with Java. But, I believe I did not introduce any critical programming errors in the project, 
	even though I am influenced by automatic memory management habits (thanks to Java and another languages). 
	If anybody finds something "bad" in the code, I will be happy if that person lets me know, so I can learn from it and correct it. 
	My email is below.
	
.HOW TO USE

	1) If you are bothering with this, you are probably programmer, so I am sure you will find out.
	2) Oh, don't forget to set-up references to Lua libraries, as they are needed to compile the project. 
	3) The project was compiled in reference to Lua 5.1.4. For newer versions, you might need to do some changes, as I think the API changed slightly.

.LICENSE
	This program is free software: you can redistribute it and/or modify
	it under the terms of the GNU Lesser General Public License as published by
	the Free Software Foundation, either version 3 of the License, or
	(at your option) any later version.

	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	GNU General Public License for more details.

	You should have received a copy of the GNU Lesser General Public License
	along with this program.  If not, see <http://www.gnu.org/licenses/>.

.NOTES
	Author: Radek Henys (admin@mouseviator.com)
	Version: 1.0b
	Last update: 16.4.2014
	License: LGPL v3
